From 15732c335d41b504026499a2a28eb1c2f2d4cf0c Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Sat, 23 Aug 2014 11:18:03 -0700 Subject: [PATCH] Update guide.md to use "language: rust" in .travis.yml travis-ci now supports "language: rust", which eliminates the need to call rustup.sh in .travis.yml. See http://www.reddit.com/r/rust/comments/2ecocp/travis_ci_supports_rust/ for details. --- src/doc/source/guide.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/doc/source/guide.md b/src/doc/source/guide.md index 2ab95458e..853c613b9 100644 --- a/src/doc/source/guide.md +++ b/src/doc/source/guide.md @@ -390,8 +390,7 @@ correct number of tests. To test your project on Travis-CI, here is a sample `.travis.yml` file: ``` -install: - - curl http://www.rust-lang.org/rustup.sh | sudo sh - +language: rust script: - cargo build --verbose - cargo test --verbose -- 2.30.2